ostbuild: Don't check for a "Makefile"
authorColin Walters <walters@verbum.org>
Wed, 18 Jan 2012 21:40:47 +0000 (16:40 -0500)
committerColin Walters <walters@verbum.org>
Wed, 18 Jan 2012 21:40:47 +0000 (16:40 -0500)
WebKit uses GNUmakefile which is totally valid, and this check
isn't really gaining us anything.

src/ostbuild/pyostbuild/builtin_compile_one.py

index fb83dcc5757bacfb9c09bcef379302a2e3944697..88b3d11929fbcf6ae080b15b26d7ce8f7310aff9 100755 (executable)
@@ -152,10 +152,6 @@ class OstbuildCompileOne(builtins.Builtin):
         args.extend(self.configargs)
         run_sync(args, cwd=builddir)
 
-        makefile_path = os.path.join(builddir, 'Makefile')
-        if not os.path.exists(makefile_path):
-            fatal("No Makefile found")
-
         args = list(self.makeargs)
         user_specified_jobs = False
         for arg in args: